home *** CD-ROM | disk | FTP | other *** search
- property pStringChan, pFCandyMem, pCurrentCandy, pBiteCount, pButtonChan
- global gBlank, gSwingMode
-
- on new me
- set pStringChan to 8
- set pFCandyMem to 71
- set pCurrentCandy to 1
- set pBiteCount to 0
- set pButtonChan to 6
- return me
- end
-
- on mSelectRope me
- set the memberNum of sprite pStringChan to pFCandyMem + (6 * (pCurrentCandy - 1))
- set pCurrentCandy to pCurrentCandy + 1
- if pCurrentCandy > 4 then
- set pCurrentCandy to 1
- end if
- set pBiteCount to 0
- if gSwingMode = 1 then
- set gSwingMode to 0
- set the memberNum of sprite pButtonChan to 25
- end if
- end
-
- on mBite me
- if the memberNum of sprite pStringChan = gBlank then
- exit
- end if
- AnimLinNL(pButtonChan, "Eat", [26, 27, 28, 27, 26, 25], 9, 0, 0)
- if pBiteCount < 1 then
- set the memberNum of sprite pStringChan to the memberNum of sprite pStringChan + 1
- set pBiteCount to pBiteCount + 1
- else
- mSetSwingMode()
- end if
- end
-
- on mSetSwingMode me
- set fCst to the memberNum of sprite pStringChan
- AnimLinNL(pStringChan, "dropRope", [fCst + 1, fCst + 2, fCst + 3, fCst + 4], 9, 0, 0)
- repeat while soundBusy(1)
- end repeat
- set theTime to the timer + 25
- set gSwingMode to 1
- puppetSnd(1, "SelectString")
- set the memberNum of sprite pButtonChan to 29
- UStage(theTime)
- set theTime to the timer + 25
- puppetSnd(1, "SelectString")
- set the memberNum of sprite pButtonChan to 30
- UStage(theTime)
- end
-